.breadcrumb {
  padding-left: 0;
  margin-left: 3px;
  list-style: none;
  display: flex;
  gap: 5px;
  border-radius: 5px;
  font-size: 17px;
  position: relative;
  font-family: 'ART', sans-serif;
  white-space: nowrap;
}

.breadcrumb li + li::before {
  content: none;
}
.breadcrumb > li:not(:last-child) {
  position: relative;
  padding-right: 15px;
}
.breadcrumb > li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: #CACACA;
  pointer-events: none;
  user-select: none;
}
@font-face {
  font-family: 'ART';
  src: url('../font-family/ART.woff2') format('woff2'),
       url('../font-family/ART.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.breadcrumb a {
  text-decoration: none;
  color: #DEDEDEAB;
  background: linear-gradient(#000000);
  border-radius: 6.5px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb li[aria-current] {
  color: #FFFFFF;
  text-shadow: 1px 2px 3px #000000;
  font-weight: bold;
  border-radius: 5px;  
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  background-image: linear-gradient(to right, rgba(112, 0, 255, 1) calc(100% - 4px), transparent calc(100% - 12px));
  background-repeat: no-repeat;
  background-size: 0% 100%; 
  animation: breadcrumbArrow 2.5s ease-out forwards;
  animation-fill-mode: forwards;
}
.breadcrumb li[aria-current]::-webkit-scrollbar {
  display: none;
}
@keyframes breadcrumbArrow {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 110% 100%;
  }
}

.dark {
  background-color: #161616;
  color: white;
}
.light {
  background-color: #FFFFFF;
  color: black;
}

.switch {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 60px;
  height: 34px;
  right: 5px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: .1s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: .1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

input:checked + .slider {
  background-color: #000000;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}

.sun {
  opacity: 1;
  transition: .1s;
  left: 17px;
}

.moon {
  opacity: 0;
  transition: .1s;
}

input:checked + .slider .sun {
  opacity: 0;
  left: 43px;
}

input:checked + .slider .moon {
  opacity: 1;
  left: 43px;
}

.img-icon img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: auto;
}

.dark-light-bremb {
  display: flex;
  border: #81ddff 5px double;
  border-radius: 16px;
  background-color: #00d9ff60;
  backdrop-filter: blur(5px);
  justify-content: space-between;
  align-items: center;
  align-content: center;
  height: auto;
  box-sizing: border-box;
  padding: 0;
  flex-wrap: wrap;
  position: sticky;
  top: 74px;
  z-index: 25;
}
